home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / InternalFrameListener.java < prev    next >
Text File  |  1998-06-30  |  3KB  |  80 lines

  1. /*
  2.  * @(#)InternalFrameListener.java    1.4 98/03/16
  3.  * 
  4.  * Copyright 1993-1997 Sun Microsystems, Inc. 901 San Antonio Road, 
  5.  * Palo Alto, California, 94303, U.S.A.  All Rights Reserved.
  6.  * 
  7.  * This software is the confidential and proprietary information of Sun
  8.  * Microsystems, Inc. ("Confidential Information").  You shall not
  9.  * disclose such Confidential Information and shall use it only in
  10.  * accordance with the terms of the license agreement you entered into
  11.  * with Sun.
  12.  * 
  13.  * CopyrightVersion 1.2
  14.  * 
  15.  */
  16.  
  17. package com.sun.java.swing.event;
  18.  
  19. import java.util.EventListener;
  20.  
  21. /**
  22.  * The listener interface for receiving internal frame events.
  23.  * This class is functionally equivalent to the WindowListener class
  24.  * in the AWT.
  25.  * <p>
  26.  * See <a href="http://java.sun.com/docs/books/tutorial/ui/components/windowlistener.html">Writing a Window Listener</a>
  27.  * in <a href="http://java.sun.com/Series/Tutorial/index.html"><em>The Java Tutorial</em></a> and
  28.  * <a href="http://www.awl.com/cp/javaseries/jcl1_2.html">The Java Class Libraries (update)</a>
  29.  * for further documentation.
  30.  *
  31.  * @see java.awt.event.WindowListener
  32.  *
  33.  * @version 1.4 03/16/98
  34.  * @author Thomas Ball
  35.  */
  36. public interface InternalFrameListener extends EventListener {
  37.     /**
  38.      * Invoked when a internal frame has been opened.
  39.      * @see com.sun.java.swing.JInternalFrame#show
  40.      */
  41.     public void internalFrameOpened(InternalFrameEvent e);
  42.  
  43.     /**
  44.      * Invoked when an internal frame is in the process of being closed.
  45.      * The close operation can be overridden at this point.
  46.      * @see com.sun.java.swing.JInternalFrame#setDefaultCloseOperation
  47.      */
  48.     public void internalFrameClosing(InternalFrameEvent e);
  49.  
  50.     /**
  51.      * Invoked when an internal frame has been closed.
  52.      * @see com.sun.java.swing.JInternalFrame#setClosed
  53.      */
  54.     public void internalFrameClosed(InternalFrameEvent e);
  55.  
  56.     /**
  57.      * Invoked when an internal frame is iconified.
  58.      * @see com.sun.java.swing.JInternalFrame#setIcon
  59.      */
  60.     public void internalFrameIconified(InternalFrameEvent e);
  61.  
  62.     /**
  63.      * Invoked when an internal frame is de-iconified.
  64.      * @see com.sun.java.swing.JInternalFrame#setIcon
  65.      */
  66.     public void internalFrameDeiconified(InternalFrameEvent e);
  67.  
  68.     /**
  69.      * Invoked when an internal frame is activated.
  70.      * @see com.sun.java.swing.JInternalFrame#setSelected
  71.      */
  72.     public void internalFrameActivated(InternalFrameEvent e);
  73.  
  74.     /**
  75.      * Invoked when an internal frame is de-activated.
  76.      * @see com.sun.java.swing.JInternalFrame#setSelected
  77.      */
  78.     public void internalFrameDeactivated(InternalFrameEvent e);
  79. }
  80.